Prepare release 2.11.0 (#293)
authorErik Schnetter <schnetter@gmail.com>
Fri, 20 Jun 2025 19:45:40 +0000 (15:45 -0400)
committerGitHub <noreply@github.com>
Fri, 20 Jun 2025 19:45:40 +0000 (15:45 -0400)
* Prepare release 2.11.0

* Update soversion

* Update MANIFEST

CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index 0746227db83111f20681713f5427121bf634a219..2f259fe63a595d83b09ec0651ca5d8c8b6884766 100644 (file)
@@ -5,13 +5,13 @@ include (utils.cmake)
 disallow_intree_builds()
 
 # API version - be sure to update utf8proc.h and Makefile, too!
-project (utf8proc VERSION 2.10.0 LANGUAGES C)
+project (utf8proc VERSION 2.11.0 LANGUAGES C)
 
 # This is the ABI version number, which may differ from the
 # API version number (defined in utf8proc.h and above).
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 3)
-set(SO_MINOR 1)
+set(SO_MINOR 2)
 set(SO_PATCH 0)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
index ba7924d4ecb9f1bba0b5c518dd6621130b63fbbb..4bda19ad692472473c72bdef0ddc771042de3fc6 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.3.1.0
-lib/libutf8proc.so.2 -> libutf8proc.so.3.1.0
-lib/libutf8proc.so.3.1.0
+lib/libutf8proc.so -> libutf8proc.so.3.2.0
+lib/libutf8proc.so.2 -> libutf8proc.so.3.2.0
+lib/libutf8proc.so.3.2.0
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 94f76e3847e161daaa44617fa9759a7af6f42133..ffa4d4daa27d168be94cfca05283c35b12dd6f15 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,11 +23,11 @@ SOFLAG = -Wl,-soname
 # The API version number is defined in utf8proc.h.
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=3
-MINOR=1
+MINOR=2
 PATCH=0
 
 # api version (also in utf8proc.h and CMakeLists.txt)
-VERSION=2.10.0
+VERSION=2.11.0
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
diff --git a/NEWS.md b/NEWS.md
index 90868241979ba528f97fa306a9e3423369a87f79..2226ad5099dab33f3f879f5a4fd550cce7453000 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,11 @@
 # utf8proc release history #
 
+## Version 2.11.0 ##
+
+2025-06-20
+
+ - Unicode 17 support ([#292]).
+
 ## Version 2.10.0 ##
 
 2024-12-31
index 039da76909d8d139155743436a4c5e7c5d4171f5..7339f2e975e6fd05bb5bb593ceaf2fc9d055f4ed 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 10
+#define UTF8PROC_VERSION_MINOR 11
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */